All Questions
Tagged with circular-dependencylayers
2 questions
6votes
2answers
5kviews
How to easily avoid circular dependencies
In a legacy project's service layer, there are tens of service classes and among them there is one service, UtilityService using 2 other services: class UtilityService{ private UserService ...
3votes
0answers
690views
Refactoring to avoid circular references
I'm working on an ASP.NET MVC solution that has two projects, WebUI and DAL. WebUI references DAL. DAL has the repository and context, while WebUI contains Authentication and Authorization classes. ...